Skip to main content

GET Audios for a specific Podcast

Overview


The following table contains information about the GET method for managing the process of retrieving audios from a specific podcast.

GET Paginated Audios for a specific Podcast
MethodGET
URL or Endpoint/api​/v2/projectId/podcasts/audios
ParameterspodcastId(query), page(query), take(query), projectId
BodyNot Applicable

The description of the URL parameters is as follows:

projectId URL Parameter
URL Parameter NameprojectId
MandatoryYes
Typestring
DescriptionUnique Id of the project.

The description of the parameters is as follows:

Parameter NameMandatoryTypeDescription
podcastIdYesstringUnique Id of the podcast.
pageNointeger($int32)Current page you want to receive
takeNointeger($int32)Number of channels you want to receive

Request Body

This method does not require the request body.

Response

{
"success": true,
"errors": [
"string"
],
"messages": [
"string"
],
"result": {
"currentPage": 0,
"totalPages": 0,
"pageSize": 0,
"totalCount": 0,
"items": [
{
"mediaId": "{audioId}",
"title": "{title}",
"author": "{author}",
"publishDate": "2025-03-11T10:01:36.664Z",
"thumbnailUrl": "https://cdn.vpplayer.tech/{projectId}/audio-encode/{audioId}/thumbnails/retina.jpg",
"duration": 93.727347,
"durationString": "01:33",
"hlsUrl": "https://cdn.vpplayer.tech/{projectId}/audio-encode/{audioId}/hls/master_file.m3u8"
}
]
},
"resultInfo": null,
"statusCode": 200
}

Information about the fields that appear when you receive the response are displayed in the table below.

Field NameTypeDescription
successboolIf the response is successful it will return true. Otherwise will return false
errorsarray[]Indicates if there was an error
messagesarray[]Returns the response message from back-end
resultarray[Object]Returns the response object
currentPageinteger($int32)Returns the current page number in the paginated list of audio
totalPagesinteger($int32)Returns the total number of pages available for the audio list
pageSizeinteger($int32)Specifies the maximum number of audios that can be displayed on a single page
totalCountinteger($int32)Returns the total number of audios that are in that page
itemsarray[Object]Returns the list of podcast's audio objects with detailed information for each audio
mediaIdstringThe identifier for the audio
titlestringThe title of the audio
authorstringAuthor of the audio
publishDatestringThe date and time when the audio was published
thumbnailUrlstringThe URL for the thumbnail image of the audio
durationfloatThe duration of the audio in seconds
durationStringstringThe duration of the audio formatted as a string
hlsUrlstringThe URL for the HLS version of the audio
resultInfoobjectAdditional information about the result
statusCodeintegerThe HTTP status code of the response

If the action is successful, the service sends back an HTTP 200 or 201 response.

Errors

For information about the errors that are common to all actions, see Common Errors:

  • HTTP Status Code 400: Bad Request

  • HTTP Status Code 401: Unauthorized

  • HTTP Status Code 403: Forbidden

  • HTTP Status Code 404: Result Not Found

  • HTTP Status Code 500: Internal Server Error

  • HTTP Status Code 503: Backend Fetch Failed